home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / bc.postrm < prev    next >
Text File  |  2007-12-05  |  605b  |  26 lines

  1. #! /bin/sh
  2. #
  3. # This is the postrm script for the Debian GNU/Linux bc package
  4. #
  5. # Written by Dirk Eddelbuettel <edd@debian.org>   
  6. # Previous versions written by Bill Mitchell, Austin Donnelly and James Troup
  7.  
  8. set -e
  9.  
  10. # Automatically added by dh_installmenu
  11. if [ -x "`which update-menus 2>/dev/null`" ]; then update-menus ; fi
  12. # End automatically added section
  13.  
  14.  
  15. case "$1" in
  16.     purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
  17. #     if [ -x /usr/bin/update-menus ]
  18. #     then
  19. #         update-menus
  20. #     fi
  21.         ;;
  22.     *)
  23.     echo "postrm called with unknown argument \`$1'" >&2
  24.     ;;
  25. esac
  26.